home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / business / ezm14e.zip / TEMPLATE.MCR < prev   
Text File  |  1996-11-16  |  3KB  |  73 lines

  1. 'Use this template as a base for new Easy Money macro files.
  2. 'Use your text editor's "SAVE AS" function now, and save this file as
  3. '[macro name].mcr, then revise it to suit your needs. Leave the remarks
  4. 'in place for future reference.
  5.  
  6. 'Macro files are plain ASCII text files which can be created with the DOS
  7. 'EDIT program, or other text editors.
  8.  
  9. 'Macro files are used to automate the input of recurring transactions - all
  10. 'those various deductions from your payroll check being a fine example.
  11. 'Instead of having to input single entries for federal tax, state tax,
  12. 'social security, etc. every payday, create a macro file that does it for
  13. 'you.
  14.  
  15. 'The following rules apply to EZM .MCR files:
  16.  
  17. 'Blank lines, and lines which begin with " ' " (remarks) are ignored.
  18.  
  19. 'Macro files must be plain ASCII text files - formatted files from word
  20. 'processors won't work (although most word processors have an option to
  21. 'save a file as "DOS text" or "ASCII text", either of which WILL work).
  22.  
  23. 'Macro format:
  24.  
  25. 'Since we are dealing with recurring transactions, the only unknown is the
  26. 'date. When you run a macro file, the only information you must supply is
  27. 'the macro file name and the date. The remainder of the information is
  28. 'written into the macro file, and used over and over.
  29.  
  30. 'A single macro file may contain as many entries as you wish. There are
  31. 'three items that you must include in the macro file for each entry:
  32.  
  33. '1) the two-character category code
  34. '2) the amount of the transaction
  35. '3) the note
  36.  
  37. 'These items must be specified one after the other, each on a single line.
  38.  
  39. 'In the example immediately below, pretend that the beginning " ' " and
  40. 'everything after and including " <- " does not exist.
  41.  
  42.  
  43. 'ft <- category code being used for federal income tax
  44. '-100.00 <- the usual dollar amount for this (note minus sign)
  45. 'payroll deduction <- a note about it
  46.  
  47.  
  48. 'Note: unlike making single entries in the program, in a macro file the
  49. 'amount, if negative (an expense) must have a preceeding "-" (minus sign).
  50. 'Positive amounts (money in) do not require anything special.
  51.  
  52. 'Each set of three sequential lines in the macro file which are not either
  53. 'blank or begining with " ' " will be read into the current data file as
  54. 'an entry.
  55.  
  56. 'Errors will happen if the macro file is not properly written.
  57.  
  58. 'Type in your actual macro file lines in between the two strings of
  59. '"stars" below.
  60.  
  61. '************* begin actual macro lines ****************************
  62. '(type here...)
  63.  
  64. '************* end actual macro lines ******************************
  65.  
  66. 'Again, I'd recommend leaving all the remarks in place for future reference.
  67.  
  68. 'You may create as many macro files as you wish, and each one may contain
  69. 'as many entries as you wish. Macro filenames must end in the extention .mcr
  70.  
  71. 'The filename "standard.mcr" is hard-wired into the program as the default
  72. 'macro name.
  73.